home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / TreeView / TreeController.h < prev    next >
Text File  |  1995-06-12  |  326b  |  20 lines

  1.  
  2. #import <appkit/appkit.h>
  3.  
  4. @interface TreeController:Object
  5. {
  6.     id    treeView;
  7.     id    infoPanel;
  8.     int nextX, nextY;
  9.     BOOL first;
  10. }
  11.  
  12. - init;
  13. - info:sender;
  14. - open:sender;
  15. - (BOOL)openFile:(const char *)name;
  16. - (int)app:sender openFile:(const char *)file type:(const char *)type;
  17. - (BOOL)appAcceptsAnotherFile:sender;
  18.  
  19. @end
  20.